std::basic_string::rbegin, std::basic_string::crbegin

From Cppreference

Jump to: navigation, search
​iterator rbegin();

​const_iterator rbegin() const;

​const_iterator crbegin() const;
(C++0x feature)

Returns a reverse iterator to the first character of the reversed string. It corresponds to the last character of the non-reversed string.

Contents

Parameters

(none)

Return value

reverse iterator to the first character

Complexity

constant

See also

rend
crend
returns a reverse iterator to the end
(public member function)
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages